home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / cp2dekit / h / binfdel.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-29  |  688 b   |  31 lines

  1. //***************************************************************************
  2. //
  3. // this file is (c) '94-'96 Niklas Beisert
  4. //
  5. // this file is part of the cubic player development kit.
  6. // you may only use/modify/spread this file under the terms stated
  7. // in the cubic player development kit accompanying documentation.
  8. //
  9. //***************************************************************************
  10.  
  11. #ifndef __BINFDEL_H
  12. #define __BINFDEL_H
  13.  
  14. #include <stdlib.h>
  15. #include "binfstd.h"
  16.  
  17. class delbinfile : public sbinfile
  18. {
  19. protected:
  20.   char delname[_MAX_PATH];
  21.  
  22. public:
  23.   delbinfile();
  24.  
  25.   int open(const char *name, int m);
  26.  
  27.   virtual void close();
  28. };
  29.  
  30. #endif
  31.